home *** CD-ROM | disk | FTP | other *** search
/ Eagles Nest BBS 4 / Eagles_Nest_Mac_Collection_Disc_4.TOAST / Desktop Publishing / DTPAdv10 / DTP Master Forms / card_10201.txt < prev    next >
Text File  |  1988-09-02  |  19KB  |  885 lines

  1. -- card: 10201 from stack: in
  2. -- bmap block id: 10282
  3. -- flags: 0000
  4. -- background id: 2580
  5. -- name: Photographer bids
  6. ----- HyperTalk script -----
  7. on openCard
  8.   global ProjectName
  9.   put ProjectName into line 1 of card field project
  10.  
  11. end openCard
  12.  
  13. on closecard
  14.   hide card field mask
  15.   hide card button mask1
  16. end closecard
  17.  
  18.  
  19.  
  20. -- part 42 (field)
  21. -- low flags: 00
  22. -- high flags: 4000
  23. -- rect: left=81 top=70 right=148 bottom=259
  24. -- title width / last selected line: 0
  25. -- icon id / first selected line: 0 / 0
  26. -- text alignment: 0
  27. -- font id: 3
  28. -- text size: 10
  29. -- style flags: 0
  30. -- line height: 12
  31. -- part name: printer1
  32.  
  33.  
  34. -- part 32 (field)
  35. -- low flags: 00
  36. -- high flags: 4000
  37. -- rect: left=81 top=154 right=232 bottom=259
  38. -- title width / last selected line: 0
  39. -- icon id / first selected line: 0 / 0
  40. -- text alignment: 0
  41. -- font id: 3
  42. -- text size: 10
  43. -- style flags: 0
  44. -- line height: 12
  45. -- part name: printer2
  46.  
  47.  
  48. -- part 8 (button)
  49. -- low flags: 00
  50. -- high flags: A003
  51. -- rect: left=8 top=27 right=42 bottom=83
  52. -- title width / last selected line: 0
  53. -- icon id / first selected line: 0 / 0
  54. -- text alignment: 1
  55. -- font id: 3
  56. -- text size: 9
  57. -- style flags: 0
  58. -- line height: 12
  59. -- part name: 4/1/88
  60. ----- HyperTalk script -----
  61. on mouseUp
  62.   set the name of me to the date
  63. end mouseUp
  64.  
  65.  
  66. -- part 31 (field)
  67. -- low flags: 00
  68. -- high flags: 4000
  69. -- rect: left=81 top=238 right=317 bottom=259
  70. -- title width / last selected line: 0
  71. -- icon id / first selected line: 0 / 0
  72. -- text alignment: 0
  73. -- font id: 3
  74. -- text size: 10
  75. -- style flags: 0
  76. -- line height: 12
  77. -- part name: printer3
  78.  
  79.  
  80. -- part 4 (field)
  81. -- low flags: 00
  82. -- high flags: 4000
  83. -- rect: left=319 top=70 right=148 bottom=504
  84. -- title width / last selected line: 0
  85. -- icon id / first selected line: 0 / 0
  86. -- text alignment: 0
  87. -- font id: 3
  88. -- text size: 10
  89. -- style flags: 0
  90. -- line height: 12
  91. -- part name: printer4
  92.  
  93.  
  94. -- part 16 (button)
  95. -- low flags: 00
  96. -- high flags: A003
  97. -- rect: left=290 top=327 right=342 bottom=407
  98. -- title width / last selected line: 0
  99. -- icon id / first selected line: 0 / 0
  100. -- text alignment: 1
  101. -- font id: 3
  102. -- text size: 10
  103. -- style flags: 0
  104. -- line height: 13
  105. -- part name: Add Bid to Worksheet
  106. ----- HyperTalk script -----
  107. on mouseUp
  108.   global thebid, contractor, thebid1, contractor1,  copyform
  109.   if copyform is "DTP Master Forms" then
  110.     whatform
  111.     exit mouseup
  112.   end if
  113.   put empty into thebid
  114.   put empty into contractor
  115.   put empty into thebid1
  116.   put empty into contractor1
  117.   repeat with number is 8 to 10
  118.     if the hilight of card button number is true then
  119.       put card field (number-7) into contractor
  120.       put line 6 of card field (number-7) into thebid
  121.       exit repeat
  122.     end if
  123.   end repeat
  124.   repeat with number is 11 to 13
  125.     if the hilight of card button number is true then
  126.       put card field (number-7) into contractor1
  127.       put line 6 of card field (number-7) into thebid1
  128.       exit repeat
  129.     end if
  130.   end repeat
  131.   answer "Add the photographer or illustrator?" with "Photographer" or "Illustrator" or "Cancel"
  132.   if it is "Photographer" then
  133.     if thebid is empty then
  134.       answer "There is no bid to place." with "OK"
  135.       exit mouseup
  136.     end if
  137.     thephotographer
  138.     exit mouseup
  139.   else if it is "Illustrator" then
  140.     if thebid1 is empty then
  141.       answer "There is no bid to place." with "OK"
  142.       exit mouseup
  143.     end if
  144.     theillustrator
  145.     exit mouseup
  146.   end if
  147.  
  148. end mouseUp
  149.  
  150. on thephotographer
  151.   global thebid, contractor
  152.   push card
  153.   go card "project management form"
  154.   put contractor into card field photogname
  155.   go card "estimate worksheet"
  156.   repeat with number is 1 to 6
  157.     if line number of card field "a" is "Photographer" then
  158.       put thebid into line number of card field "fees 2"
  159.       exit thephotographer
  160.     else if line number of card field "a" is empty then
  161.       put "Photographer" into line number of card field "a"
  162.       put thebid into line number of card field "fees 2"
  163.       exit thephotographer
  164.     end if
  165.   end repeat
  166.   answer "Fees field is full.  Cannot paste the bid." with "OK"
  167. end thephotographer
  168.  
  169. on theillustrator
  170.   global thebid1, contractor1
  171.   push card
  172.   go card "project management form"
  173.   put contractor1 into card field artistname
  174.   go card "estimate worksheet"
  175.   repeat with number is 1 to 6
  176.     if line number of card field "a" is "illustrator" then
  177.       put thebid1 into line number of card field "fees 2"
  178.       exit theillustrator
  179.     else if line number of card field "a" is empty then
  180.       put "illustrator" into line number of card field "a"
  181.       put thebid1 into line number of card field "fees 2"
  182.       exit theillustrator
  183.     end if
  184.   end repeat
  185.   answer "Field is full. Cannot paste the bid." with "OK"
  186. end theillustrator
  187.  
  188.  
  189.  
  190.  
  191.  
  192. -- part 28 (field)
  193. -- low flags: 00
  194. -- high flags: 4000
  195. -- rect: left=319 top=154 right=231 bottom=504
  196. -- title width / last selected line: 0
  197. -- icon id / first selected line: 0 / 0
  198. -- text alignment: 0
  199. -- font id: 3
  200. -- text size: 10
  201. -- style flags: 0
  202. -- line height: 12
  203. -- part name: printer5
  204.  
  205.  
  206. -- part 29 (field)
  207. -- low flags: 00
  208. -- high flags: 4000
  209. -- rect: left=319 top=238 right=316 bottom=504
  210. -- title width / last selected line: 0
  211. -- icon id / first selected line: 0 / 0
  212. -- text alignment: 0
  213. -- font id: 3
  214. -- text size: 10
  215. -- style flags: 0
  216. -- line height: 12
  217. -- part name: printer6
  218.  
  219.  
  220. -- part 3 (field)
  221. -- low flags: 01
  222. -- high flags: 0000
  223. -- rect: left=258 top=70 right=320 bottom=320
  224. -- title width / last selected line: 0
  225. -- icon id / first selected line: 0 / 0
  226. -- text alignment: 65535
  227. -- font id: 3
  228. -- text size: 10
  229. -- style flags: 0
  230. -- line height: 12
  231. -- part name: 
  232.  
  233.  
  234. -- part 1 (field)
  235. -- low flags: 01
  236. -- high flags: 0000
  237. -- rect: left=1 top=46 right=323 bottom=82
  238. -- title width / last selected line: 0
  239. -- icon id / first selected line: 0 / 0
  240. -- text alignment: 65535
  241. -- font id: 3
  242. -- text size: 10
  243. -- style flags: 0
  244. -- line height: 12
  245. -- part name: 
  246.  
  247.  
  248. -- part 2 (field)
  249. -- low flags: 00
  250. -- high flags: 4000
  251. -- rect: left=80 top=46 right=63 bottom=504
  252. -- title width / last selected line: 0
  253. -- icon id / first selected line: 0 / 0
  254. -- text alignment: 0
  255. -- font id: 3
  256. -- text size: 10
  257. -- style flags: 0
  258. -- line height: 13
  259. -- part name: Project
  260.  
  261.  
  262. -- part 34 (button)
  263. -- low flags: 00
  264. -- high flags: A003
  265. -- rect: left=412 top=327 right=342 bottom=482
  266. -- title width / last selected line: 0
  267. -- icon id / first selected line: 0 / 0
  268. -- text alignment: 1
  269. -- font id: 3
  270. -- text size: 10
  271. -- style flags: 0
  272. -- line height: 13
  273. -- part name: Print
  274. ----- HyperTalk script -----
  275. on mouseUp
  276.   global maskstatus
  277.   put "true" into maskstatus
  278.   show card field mask
  279.   show card button mask1
  280.   doMenu "print card"
  281.   hide card button mask1
  282.   hide card field mask
  283.   put false into maskstatus
  284. end mouseUp
  285.  
  286.  
  287.  
  288. -- part 37 (button)
  289. -- low flags: 80
  290. -- high flags: A002
  291. -- rect: left=370 top=309 right=326 bottom=505
  292. -- title width / last selected line: 0
  293. -- icon id / first selected line: 0 / 0
  294. -- text alignment: 1
  295. -- font id: 0
  296. -- text size: 12
  297. -- style flags: 0
  298. -- line height: 16
  299. -- part name: Scheduling Help
  300. ----- HyperTalk script -----
  301. on mouseenter
  302.   set hilight of me to true
  303. end mouseenter
  304.  
  305. on mouseleave
  306.   set hilight of me to false
  307. end mouseleave
  308.  
  309. on mouseUp
  310.   set lockscreen to true
  311.   put 11 into x
  312.   repeat for 3
  313.     hide card button x
  314.     put 1+x into x
  315.   end repeat
  316.   set lockscreen to false
  317.   set hilight of card button "management info" to false
  318. end mouseup
  319.  
  320.  
  321. -- part 38 (button)
  322. -- low flags: 80
  323. -- high flags: A002
  324. -- rect: left=370 top=293 right=310 bottom=505
  325. -- title width / last selected line: 0
  326. -- icon id / first selected line: 0 / 0
  327. -- text alignment: 1
  328. -- font id: 0
  329. -- text size: 12
  330. -- style flags: 0
  331. -- line height: 16
  332. -- part name: Scheduling Help
  333. ----- HyperTalk script -----
  334. on mouseenter
  335.   set hilight of me to true
  336. end mouseenter
  337.  
  338. on mouseleave
  339.   set hilight of me to false
  340. end mouseleave
  341.  
  342. on mouseUp
  343.   set lockscreen to true
  344.   put 11 into x
  345.   repeat for 3
  346.     hide card button x
  347.     put 1+x into x
  348.   end repeat
  349.   set lockscreen to false
  350.   set hilight of card button "management info" to false
  351. end mouseup
  352.  
  353.  
  354. -- part 39 (button)
  355. -- low flags: 80
  356. -- high flags: A002
  357. -- rect: left=370 top=277 right=294 bottom=505
  358. -- title width / last selected line: 0
  359. -- icon id / first selected line: 0 / 0
  360. -- text alignment: 1
  361. -- font id: 0
  362. -- text size: 12
  363. -- style flags: 0
  364. -- line height: 16
  365. -- part name: Scheduling Help
  366. ----- HyperTalk script -----
  367. on mouseenter
  368.   set hilight of me to true
  369. end mouseenter
  370.  
  371. on mouseleave
  372.   set hilight of me to false
  373. end mouseleave
  374.  
  375. on mouseUp
  376.   set lockscreen to true
  377.   put 11 into x
  378.   repeat for 3
  379.     hide card button x
  380.     put 1+x into x
  381.   end repeat
  382.   set lockscreen to false
  383.   set hilight of card button "management info" to false
  384. end mouseup
  385.  
  386.  
  387. -- part 40 (button)
  388. -- low flags: 00
  389. -- high flags: 0000
  390. -- rect: left=355 top=0 right=18 bottom=375
  391. -- title width / last selected line: 0
  392. -- icon id / first selected line: 28672 / 28672
  393. -- text alignment: 1
  394. -- font id: 0
  395. -- text size: 12
  396. -- style flags: 0
  397. -- line height: 16
  398. -- part name: help
  399. ----- HyperTalk script -----
  400. on mouseup
  401.   show card field "info"
  402.   wait until the mouse is down
  403.   hide card field "Info"
  404. end mouseup
  405.  
  406.  
  407. -- part 43 (button)
  408. -- low flags: 00
  409. -- high flags: 0000
  410. -- rect: left=56 top=130 right=143 bottom=79
  411. -- title width / last selected line: 0
  412. -- icon id / first selected line: 0 / 0
  413. -- text alignment: 1
  414. -- font id: 0
  415. -- text size: 12
  416. -- style flags: 0
  417. -- line height: 16
  418. -- part name: 
  419. ----- HyperTalk script -----
  420. on mouseUp
  421.   if the hilight of me is true then
  422.     repeat with number is 8 to 10
  423.       set hilight of card button number to false
  424.     end repeat
  425.   else if the hilight of me is false then
  426.     repeat with number is 8 to 10
  427.       set hilight of card button number to false
  428.     end repeat
  429.     set hilight of me to true
  430.   end if
  431. end mouseUp
  432.  
  433.  
  434.  
  435. -- part 44 (button)
  436. -- low flags: 00
  437. -- high flags: 0000
  438. -- rect: left=56 top=214 right=229 bottom=79
  439. -- title width / last selected line: 0
  440. -- icon id / first selected line: 0 / 0
  441. -- text alignment: 1
  442. -- font id: 0
  443. -- text size: 12
  444. -- style flags: 0
  445. -- line height: 16
  446. -- part name: 
  447. ----- HyperTalk script -----
  448. on mouseUp
  449.   if the hilight of me is true then
  450.     repeat with number is 8 to 10
  451.       set hilight of card button number to false
  452.     end repeat
  453.   else if the hilight of me is false then
  454.     repeat with number is 8 to 10
  455.       set hilight of card button number to false
  456.     end repeat
  457.     set hilight of me to true
  458.   end if
  459. end mouseUp
  460.  
  461.  
  462.  
  463. -- part 45 (button)
  464. -- low flags: 00
  465. -- high flags: 0000
  466. -- rect: left=57 top=298 right=313 bottom=79
  467. -- title width / last selected line: 0
  468. -- icon id / first selected line: 0 / 0
  469. -- text alignment: 1
  470. -- font id: 0
  471. -- text size: 12
  472. -- style flags: 0
  473. -- line height: 16
  474. -- part name: 
  475. ----- HyperTalk script -----
  476. on mouseUp
  477.   if the hilight of me is true then
  478.     repeat with number is 8 to 10
  479.       set hilight of card button number to false
  480.     end repeat
  481.   else if the hilight of me is false then
  482.     repeat with number is 8 to 10
  483.       set hilight of card button number to false
  484.     end repeat
  485.     set hilight of me to true
  486.   end if
  487. end mouseUp
  488.  
  489.  
  490.  
  491. -- part 46 (button)
  492. -- low flags: 00
  493. -- high flags: 0000
  494. -- rect: left=293 top=130 right=145 bottom=318
  495. -- title width / last selected line: 0
  496. -- icon id / first selected line: 0 / 0
  497. -- text alignment: 1
  498. -- font id: 0
  499. -- text size: 12
  500. -- style flags: 0
  501. -- line height: 16
  502. -- part name: 
  503. ----- HyperTalk script -----
  504. on mouseUp
  505.   if the hilight of me is true then
  506.     repeat with number is 11 to 13
  507.       set hilight of card button number to false
  508.     end repeat
  509.   else if the hilight of me is false then
  510.     repeat with number is 11 to 13
  511.       set hilight of card button number to false
  512.     end repeat
  513.     set hilight of me to true
  514.   end if
  515. end mouseUp
  516.  
  517.  
  518.  
  519. -- part 47 (button)
  520. -- low flags: 00
  521. -- high flags: 0000
  522. -- rect: left=293 top=214 right=228 bottom=317
  523. -- title width / last selected line: 0
  524. -- icon id / first selected line: 0 / 0
  525. -- text alignment: 1
  526. -- font id: 0
  527. -- text size: 12
  528. -- style flags: 0
  529. -- line height: 16
  530. -- part name: 
  531. ----- HyperTalk script -----
  532. on mouseUp
  533.   if the hilight of me is true then
  534.     repeat with number is 11 to 13
  535.       set hilight of card button number to false
  536.     end repeat
  537.   else if the hilight of me is false then
  538.     repeat with number is 11 to 13
  539.       set hilight of card button number to false
  540.     end repeat
  541.     set hilight of me to true
  542.   end if
  543. end mouseUp
  544.  
  545.  
  546.  
  547. -- part 48 (button)
  548. -- low flags: 00
  549. -- high flags: 0000
  550. -- rect: left=294 top=298 right=313 bottom=317
  551. -- title width / last selected line: 0
  552. -- icon id / first selected line: 0 / 0
  553. -- text alignment: 1
  554. -- font id: 0
  555. -- text size: 12
  556. -- style flags: 0
  557. -- line height: 16
  558. -- part name: 
  559. ----- HyperTalk script -----
  560. on mouseUp
  561.   if the hilight of me is true then
  562.     repeat with number is 11 to 13
  563.       set hilight of card button number to false
  564.     end repeat
  565.   else if the hilight of me is false then
  566.     repeat with number is 11 to 13
  567.       set hilight of card button number to false
  568.     end repeat
  569.     set hilight of me to true
  570.   end if
  571. end mouseUp
  572.  
  573.  
  574.  
  575. -- part 51 (button)
  576. -- low flags: 00
  577. -- high flags: A003
  578. -- rect: left=166 top=327 right=342 bottom=281
  579. -- title width / last selected line: 0
  580. -- icon id / first selected line: 0 / 0
  581. -- text alignment: 1
  582. -- font id: 3
  583. -- text size: 10
  584. -- style flags: 0
  585. -- line height: 13
  586. -- part name: Management Form
  587. ----- HyperTalk script -----
  588. on mouseUp
  589.   visual effect dissolve
  590.   go card "project management form"
  591. end mouseup
  592.  
  593.  
  594. -- part 35 (field)
  595. -- low flags: 81
  596. -- high flags: 0001
  597. -- rect: left=0 top=323 right=343 bottom=512
  598. -- title width / last selected line: 0
  599. -- icon id / first selected line: 0 / 0
  600. -- text alignment: 0
  601. -- font id: 3
  602. -- text size: 12
  603. -- style flags: 0
  604. -- line height: 16
  605. -- part name: mask
  606. ----- HyperTalk script -----
  607. on mouseup
  608.   hide me
  609. end mouseup
  610.  
  611.  
  612. -- part 52 (button)
  613. -- low flags: 00
  614. -- high flags: A003
  615. -- rect: left=6 top=69 right=82 bottom=82
  616. -- title width / last selected line: 0
  617. -- icon id / first selected line: 0 / 0
  618. -- text alignment: 1
  619. -- font id: 3
  620. -- text size: 9
  621. -- style flags: 0
  622. -- line height: 12
  623. -- part name: Photographer
  624. ----- HyperTalk script -----
  625. on mouseUp
  626.   global dtpdb
  627.   push card
  628.   visual wipe up slowly
  629.   go to card "main" of stack dtpdb
  630.   click at the loc of btn "photographer"
  631.   set the hilite of btn "photographer" to true
  632. end mouseUp
  633.  
  634.  
  635.  
  636. -- part 53 (button)
  637. -- low flags: 00
  638. -- high flags: A003
  639. -- rect: left=5 top=153 right=166 bottom=81
  640. -- title width / last selected line: 0
  641. -- icon id / first selected line: 0 / 0
  642. -- text alignment: 1
  643. -- font id: 3
  644. -- text size: 9
  645. -- style flags: 0
  646. -- line height: 12
  647. -- part name: Photographer
  648. ----- HyperTalk script -----
  649. on mouseUp
  650.   global dtpdb
  651.   push card
  652.   visual wipe up slowly
  653.   go to card "main" of stack dtpdb
  654.   click at the loc of btn "photographer"
  655.   set the hilite of btn "photographer" to true
  656. end mouseUp
  657.  
  658.  
  659.  
  660. -- part 54 (button)
  661. -- low flags: 00
  662. -- high flags: A003
  663. -- rect: left=6 top=237 right=250 bottom=82
  664. -- title width / last selected line: 0
  665. -- icon id / first selected line: 0 / 0
  666. -- text alignment: 1
  667. -- font id: 3
  668. -- text size: 9
  669. -- style flags: 0
  670. -- line height: 12
  671. -- part name: Photographer
  672. ----- HyperTalk script -----
  673. on mouseUp
  674.   global dtpdb
  675.   push card
  676.   visual wipe up slowly
  677.   go to card "main" of stack dtpdb
  678.   click at the loc of btn "photographer"
  679.   set the hilite of btn "photographer" to true
  680. end mouseUp
  681.  
  682.  
  683.  
  684. -- part 55 (button)
  685. -- low flags: 00
  686. -- high flags: A003
  687. -- rect: left=268 top=70 right=83 bottom=318
  688. -- title width / last selected line: 0
  689. -- icon id / first selected line: 0 / 0
  690. -- text alignment: 1
  691. -- font id: 3
  692. -- text size: 9
  693. -- style flags: 0
  694. -- line height: 12
  695. -- part name: Artist
  696. ----- HyperTalk script -----
  697. on mouseUp
  698.   global dtpdb
  699.   push card
  700.   visual wipe up slowly
  701.   go to card "main" of stack dtpdb
  702.   click at the loc of btn "artist"
  703.   set the hilite of btn "artist" to true
  704. end mouseUp
  705.  
  706.  
  707.  
  708. -- part 56 (button)
  709. -- low flags: 00
  710. -- high flags: A003
  711. -- rect: left=270 top=152 right=165 bottom=320
  712. -- title width / last selected line: 0
  713. -- icon id / first selected line: 0 / 0
  714. -- text alignment: 1
  715. -- font id: 3
  716. -- text size: 9
  717. -- style flags: 0
  718. -- line height: 12
  719. -- part name: Artist
  720. ----- HyperTalk script -----
  721. on mouseUp
  722.   global dtpdb
  723.   push card
  724.   visual wipe up slowly
  725.   go to card "main" of stack dtpdb
  726.   click at the loc of btn "artist"
  727.   set the hilite of btn "artist" to true
  728. end mouseUp
  729.  
  730.  
  731.  
  732. -- part 57 (button)
  733. -- low flags: 00
  734. -- high flags: A003
  735. -- rect: left=269 top=236 right=249 bottom=319
  736. -- title width / last selected line: 0
  737. -- icon id / first selected line: 0 / 0
  738. -- text alignment: 1
  739. -- font id: 3
  740. -- text size: 9
  741. -- style flags: 0
  742. -- line height: 12
  743. -- part name: Artist
  744. ----- HyperTalk script -----
  745. on mouseUp
  746.   global dtpdb
  747.   push card
  748.   visual wipe up slowly
  749.   go to card "main" of stack dtpdb
  750.   click at the loc of btn "artist"
  751.   set the hilite of btn "artist" to true
  752. end mouseUp
  753.  
  754.  
  755.  
  756. -- part 58 (button)
  757. -- low flags: 80
  758. -- high flags: 4001
  759. -- rect: left=340 top=0 right=20 bottom=511
  760. -- title width / last selected line: 0
  761. -- icon id / first selected line: 0 / 0
  762. -- text alignment: 1
  763. -- font id: 0
  764. -- text size: 12
  765. -- style flags: 0
  766. -- line height: 16
  767. -- part name: mask1
  768. ----- HyperTalk script -----
  769. on mouseUp
  770.   set hilight of me to true
  771.   hide card button mask1
  772. end mouseUp
  773.  
  774.  
  775.  
  776. -- part 20 (field)
  777. -- low flags: 80
  778. -- high flags: 2004
  779. -- rect: left=86 top=51 right=283 bottom=471
  780. -- title width / last selected line: 0
  781. -- icon id / first selected line: 0 / 0
  782. -- text alignment: 0
  783. -- font id: 3
  784. -- text size: 10
  785. -- style flags: 0
  786. -- line height: 15
  787. -- part name: info
  788.  
  789.  
  790. -- part 59 (button)
  791. -- low flags: 00
  792. -- high flags: A003
  793. -- rect: left=45 top=327 right=342 bottom=160
  794. -- title width / last selected line: 0
  795. -- icon id / first selected line: 0 / 0
  796. -- text alignment: 1
  797. -- font id: 3
  798. -- text size: 10
  799. -- style flags: 0
  800. -- line height: 13
  801. -- part name: Estimate Worksheet
  802. ----- HyperTalk script -----
  803. on mouseUp
  804.   visual effect dissolve
  805.   go card "estimate worksheet"
  806. end mouseup
  807.  
  808.  
  809. -- part contents for background part 18
  810. ----- text -----
  811. P H O TO G R A P H E R / A R T I S T    B I D S  
  812.  
  813. -- part contents for card part 1
  814. ----- text -----
  815. PROJECT:
  816.  
  817. Photographer: 
  818. Contact:
  819. Address:
  820.  
  821. Phone:
  822. Bid:
  823.  
  824. Photographer: 
  825. Contact:
  826. Address:
  827.  
  828. Phone:
  829. Bid:
  830.  
  831. Photographer: 
  832. Contact:
  833. Address:
  834.  
  835. Phone:
  836. Bid:
  837.  
  838.  
  839.  
  840.  
  841. -- part contents for card part 2
  842. ----- text -----
  843. DTP Master Forms
  844.  
  845.  
  846.  
  847.  
  848.  
  849. 0
  850.  
  851. -- part contents for card part 3
  852. ----- text -----
  853. Artist:
  854. Contact:
  855. Address:
  856.  
  857. Phone:
  858. Bid:
  859.  
  860. Artist:
  861. Contact:
  862. Address:
  863.  
  864. Phone:
  865. Bid:
  866.  
  867. Artist:
  868. Contact:
  869. Address:
  870.  
  871. Phone:
  872. Bid:
  873.  
  874.  
  875.  
  876. Notes:
  877.  
  878. -- part contents for card part 20
  879. ----- text -----
  880.  
  881. Use the PHOTOGRAPHER/ARTIST BID form to record photography and illustration bids for your project.  
  882.  
  883. To enter the name of a photographer/artist, either click the "Photographer"  or "Artist" button to search the database, or type the appropriate information on the lines provided.  Enter the amount of the bid on the appropriate bid line.
  884.  
  885. When you're ready to select a bid from a photographer or artist, click on the bid title (i.e "Bid:") you wish to use and then click on "Add Bid to Worksheet".  The name of the photographer/artist and the bid you selected will automatically be placed into the Project Management and Estimate Worksheet forms.